Explain how to create a thread and start it running.
1477
26-Jan-2015
Anonymous User
26-Jan-2015By extending the Thread class wherein the subclass needs to override the run method. Then just an instance of that class needs to be created and [classname].start() would start it running.